/* second page */




/* ✅ Default (phone first) */
.hero-sec-des {
    width: 100%;
    color: #FFFEFB;
    text-align: right;
    font-family: "SafiroMedium";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
}

.hero-sec-btn {
  max-width: 16rem;
  color: #000;
  font-family: "MiedingerBold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
 padding: 10px 28px;
  border-radius: 30px;
  background-color: #fff;
  position: relative;
  overflow: hidden; /* important for clipping */
  border: 2px solid #000; /* optional border like outline-light */
}

/* The clip wrapper (fixed height of text) */
.label-clip {
  display: block;
  position: relative;
  height: 1em;         /* matches text line-height */
  overflow: hidden;
}

/* Both labels stacked */
.button-label {
  display: block;
  transform: translateY(0%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Second label sits below first initially */
.button-label:last-child {
  position: absolute;
  top: 100%; /* below the first label */
  left: 0;
  right: 0;
}

/* Hover effect: slide first up, second into view */
.hero-sec-btn:hover .button-label:first-child {
  transform: translateY(-100%);
}
.hero-sec-btn:hover .button-label:last-child {
  transform: translateY(-100%);
}


.hero-sec-des2{
  width: 100%;
  /* max-width: clamp(300px, 50vw, 500px); */
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
color: #FFFEFB;
font-family: "SafiroMedium";
font-style: normal;
font-weight: 500;
line-height: normal;
}

.hero-heading{
  color: #FFFEFB;
  font-family: "MiedingerBold";
  font-size: clamp(2rem, 8vw, 5.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 var(--spacing-xs) 0;
}

.butterfly-cls{
  height: auto;
  flex-shrink: 0;
  margin-top: var(--spacing-sm);
flex-shrink: 0;
aspect-ratio: 1/1;
}
/* hero section animations css */
.hero-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* overflow: hidden; */
  padding: var(--spacing-sm);
  text-align: left;
  width: 100%;
}

.hero-headline-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  /* width: 100%; */
  max-width: clamp(300px, 80vw, 1200px);
}

.headline-clip {
  overflow: hidden;
  position: relative;
  width: 100%;              /* full row occupy karega */
  display: block;
  /* text-align: left ; */
  margin-bottom: var(--spacing-xs);
}
.hero-heading {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(2rem, 8vw, 5.5rem);          /* responsive font size */
  font-weight: 600;
  text-align: left;          /* left aligned */
  width: 100%;               /* force full width */
  display: inline-block;     /* GSAP transform ke liye inline-block better */
  position: relative;
}


/* Media Queries for Hero Section */
@media (min-width: 37.5em) { /* 600px - Tablet */
  .hero-heading {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
  }
  


  .hero-sec-des{
color: #FFFEFB;
font-family: "SafiroMedium";
font-size: var(--text-base);
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: var(--spacing-sm);
}

  .hero-sec-des,
  .hero-sec-des2 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: clamp(350px, 70vw, 600px);
  }
  

  
  .butterfly-cls {
    width: clamp(250px, 40vw, 450px);
  }
}

@media (min-width: 64em) { /* 1024px - Laptop */
  .hero-heading {
    font-size: clamp(3rem, 6vw, 5rem);
  }
  
  .hero-sec-des,
  .hero-sec-des2 {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    max-width: clamp(400px, 60vw, 700px);
  }
  
 
  
  .butterfly-cls {
    width: clamp(300px, 35vw, 500px);
  }
}

@media (min-width: 90em) { /* 1440px - Desktop */
  .hero-heading {
    font-size: clamp(3.5rem, 5vw, 6rem);
  }
  
  .hero-sec-des,
  .hero-sec-des2 {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    max-width: clamp(450px, 50vw, 800px);
  }
  
}

/* Optional: adjust sidebar z-index */
.sidebar {
  z-index: 9999;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80px; /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: transparent; /* or rgba(0,0,0,0.1) for slight overlay */
  z-index: 2000;
  pointer-events: none; /* allows underlying elements to be clickable if needed */
}

.sticky-header .hamburger {
  position: static;
  margin: 0;
  pointer-events: auto;
}


    /* Sticky Section Layout */
    .sticky-section {
      display: flex;
      align-items: flex-start;
      gap: clamp(2rem, 5vw, 4rem);              /* heading aur content ke beech distance */
      padding: 0 clamp(2vw, 5vw, 10vw);
      min-height: 60vh;      /* scroll ke liye height */
      flex-wrap: wrap;
      background: #FFF;
    }


    /* Sticky Heading Side */
    .sticky-wrapper {
      position: sticky;
      top: clamp(10vh, 15vh, 20vh);
      flex: 0 0 clamp(40%, 45vw, 52%);          /* heading ke liye column */
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }


     /* Heading Style */
    .sticky-heading {
      color: rgb(242, 205, 207);
      font-family: "MiedingerBold";
      font-size: clamp(1.2rem, 4vw, 3rem);
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      text-transform: uppercase;
    }


    /* Media Queries for Sticky Section */
@media (min-width: 37.5em) { /* 600px - Tablet */
  .sticky-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: clamp(1.2rem, 4vw, 4rem);
  }
  
  .block {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  }
  
  .sticky-wrapper {
    top: clamp(8vh, 12vh, 15vh);
  }
}

@media (min-width: 64em) { /* 1024px - Laptop */
  .sticky-heading {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: clamp(1.8rem, 3vw, 4.5rem);
  }
  
  .block {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin-bottom: clamp(0.9rem, 1.2vw, 1.3rem);
  }
  
  .sticky-wrapper {
    top: clamp(12vh, 14vh, 18vh);
  }
}



@media (min-width: 90em) { /* 1440px - Desktop */
  .sticky-heading {
    font-size: clamp(2.2rem, 2.5vw, 3rem);
    margin-bottom: clamp(2rem, 2.5vw, 5rem);
  }
  
  .block {
    font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    margin-bottom: clamp(1rem, 1vw, 1.5rem);
  }
}
      /* Content Column */
    .content-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      margin-top: 0;         /* heading baseline se align */
      max-width: clamp(300px, 60vw, 600px);
    }

    /* Text Blocks */
    .block {
      width: 100%;
      max-width: clamp(300px, 50vw, 515px);
      color: #000;
      font-family: var( --font-secondary);
      font-style: normal;
      font-weight: 400;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
      opacity: 0;
      transform: translateY(clamp(20px, 5vw, 40px));
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      line-height: 1.2;
      position: relative;
    }




        /* Responsive adjustments for mobile */
    @media (max-width: 768px) {
      .sticky-section {
        flex-direction: column;
        gap: var(--spacing-md);
      }
      
      .sticky-wrapper {
        position: relative;
        top: 0;
        flex: 0 0 auto;
        margin-bottom: var(--spacing-lg);
      }
      
      .content-col {
        max-width: 100%;
      }
      
      .block {
        max-width: 100%;
      }
    }

/* name section css */
  .names-section {
  height: 100vh; /* full viewport */
  display: flex;
  flex-direction: column;
  justify-content: center; /* center vertically */
  align-items: center;     /* center horizontally */
  overflow: hidden;
  text-align: center;
  padding: var(--spacing-sm);
}


.names-list-clip {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: clamp(60px, 15vh, 135px); /* default fluid */
}

/* 📱 Mobile (<=480px) */
@media (max-width: 480px) {
  .names-list-clip {
    flex-flow: column;
    height: 1em;
    font-size: 8vw;
    line-height: 1;
    display: flex;
    overflow: hidden;
  }
}



/* 🖥️ Large Desktop (1201px and above) */
@media (min-width: 1201px) {
  .names-list-clip {
    height: 110px; /* max height */
  }
}

.names-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.names-item {
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  color: #F2CDCF;
  font-family: "MiedingerBold";
  font-size: clamp(2rem, 6vw, 7.3rem);
  font-weight: 700;
  line-height: 1;
  padding: var(--spacing-3xs) 0;
}

/* end */


/* prefooter section */

      .slide-container {
            position: relative;
             height: 100vh; 
            max-height: 515px !important;
            width: 200vw;
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
        }
        
        .slide-container.slide-right {
            transform: translateX(-100vw);
        }
        
      .slide {
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; /* content center ho jaye */
  padding: 2rem; /* responsive spacing */
  box-sizing: border-box;
}
        
        /* First Slide - White Background */
        .slide-1 {
            background: white;
            color: black;
        }
        
        /* Second Slide - Black Background */
        .slide-2 {
            background: black;
            color: white;
        }
        
        .slide-content {
            width: 100%;
            padding-left: 80px;
            max-width: 800px;
        }
        
        .main-title {
            max-width: 621.127px;
            margin-bottom: 80px;
            text-transform: uppercase;
            color: #0F0000;
            font-family:"MiedingerBold";
            font-size: 60.325px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }
        
        .description-container {
            display: flex;
            gap: 50px;
            max-width: 700px;
            flex-direction: column;
        }
        
.description {
  max-width: 814px;                  
  width: 100%;                       
  flex: 1;
  color: #000;
  font-family: "SafiroMedium";
  font-size: clamp(0.95rem, 2.5vw, 24px); /* fluid font-size */
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 auto;                                  
}

/* 📱 Mobile (<=480px) */
@media (max-width: 480px) {
  .description {
    font-size: clamp(0.85rem, 4vw, 1rem); /* smaller readable font */
    line-height: 1.4;
  }
}

/* 📲 Tablet (481px–768px) */
@media (max-width: 768px) {
  .description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    line-height: 1.5;
  }
}

        
        .description a {
            color: inherit;
            text-decoration: underline;
        }
        
        /* Small icon positioned exactly in the title */
        .title-icon {
            position: absolute;
            top: 38%;
            right: 42%;
            width: 80px;
            height: 60px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .icon-base {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #e8e8e8;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .icon-overlay {
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f8a5c2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: top 0.3s ease;
        }
        
        .title-icon:hover .icon-overlay {
            top: 0;
        }
        
        .title-icon:hover .icon-base {
            transform: translateY(100%);
        }
        
        .icon-base i,
        .icon-overlay i {
            font-size: 20px;
            color: #666;
        }
        
        .icon-overlay i {
            color: white;
        }
        
        /* Bottom right circular arrow */
        .nav-arrow {
            position: absolute;
            /* top: 250px; */
            right: 5px;
            width: 70px;
            height: 70px;
            /* background: black; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .slide-2 .nav-arrow {
            background: white;
            left: 80px;
            right: auto;
        }
        
        /* .nav-arrow:hover {
            transform: scale(1.1);
        } */
        
        .nav-arrow i {
            font-size: 20px;
            color: white;
        }
        
        .slide-2 .nav-arrow i {
            color: black;
        }
        
        
        /* Second slide specific styles */
        .pink-shape {
            position: absolute;
            left: -250px;
            top: -100px;
            width: 600px;
            height: 800px;
            background: #f8a5c2;
            transform: rotate(45deg);
            z-index: 1;
        }
        
        .shape-icon {
            position: absolute;
            top: 350px;
            right: 200px;
            width: 100px;
            height: 80px;
            background: white;
            transform: rotate(-45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: pointer;
        }
        
        .shape-icon-base {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .shape-icon-overlay {
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f8a5c2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: top 0.3s ease;
        }
        
        .shape-icon:hover .shape-icon-overlay {
            top: 0;
        }
        
        .shape-icon:hover .shape-icon-base {
            transform: translateY(100%);
        }
        
        .shape-icon i {
            font-size: 28px;
            color: #666;
        }
        
        .shape-icon-overlay i {
            color: white;
        }
        
        .form-section {
            position: relative;
            z-index: 2;
            max-width: 650px;
            margin-left: auto;
            margin-right: 120px;
        }
        
        .form-title {
          font-weight: 700;
          margin-bottom: 30px;
          letter-spacing: 2px;
           width: 781.63px;
            text-transform: uppercase;
            letter-spacing: -2px;
            color: #FFF;
            font-family: "MiedingerBold";
            font-size: 42.145px;
            font-style: normal;
            line-height: normal;
        }
        
        .form-row {
            display: flex;
            gap: 60px;
            margin-bottom: 50px;
        }
        
        .form-group {
            flex: 1;
            position: relative;
        }
        
        .form-label {
           width: 84px;
            display: block;
            color: #FFF;
            font-family: "Safiro";
           font-size: 16px;
           font-style: normal;
            font-weight: 500;
            line-height: normal;
            text-transform: uppercase;
        }
        
        .form-control {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid #555;
            /* padding: 20px 0; */
            color: white;
            font-size: 1.2rem;
            outline: none;
        }
        
        .form-control:focus {
            border-bottom-color: #f8a5c2;
        }
        
        .form-control::placeholder {
            color: #777;
            font-size: 1.1rem;
        }
        
        .submit-btn {
            background: white;
            border: none;
            padding: 3px 27px;
            border-radius: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 40px;
            color: #140102;
            font-family: "MiedingerBold";
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }
        
        .submit-btn:hover {
            background: #f8a5c2;
            color: white;
        }
        
        /* Up arrow at bottom center of second slide */
        .up-arrow {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: #444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .up-arrow:hover {
            transform: translateX(-50%) scale(1.1);
        }
        
        .up-arrow i {
            color: white;
            font-size: 18px;
        }
     @media (max-width: 480px) {
          .main-title {
                    font-size: 1.7rem;
                    margin: 34px auto;
          }
    }

/* ============================
   tablet (≥480px)
   ============================ */
 
   @media (min-width: 481px) and (max-width: 768px) {
       .main-title {
        font-size: 3rem !important;
        margin:0px;
    }
  }
        @media (max-width: 1200px) {
            .main-title {
                font-size: 5rem;
            }
            
            .title-icon {
                right: 35%;
            }
        }
        
        @media (max-width: 768px) {

              .slide {
              width: 100vw;
              position: relative;
              display: flex;
              align-items: center;
              justify-content: center;
              padding: 1rem;
              box-sizing: border-box;
             }

            .form-title {
                font-size: 1.5rem;
                width: 100%;
            }
            .slide-content {
                padding-left: 0px;
            }
            
          .description-container {
            flex-direction: column;
            gap: 0;
            width: 100%;          /* full width in mobile */
            max-width: 287px;     /* optional: cap width so it doesn’t grow too wide */
            text-align: left;
          }
            
            .form-section {
                margin-right: 40px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 30px;
            }
            
            .nav-arrow, .up-arrow {
                bottom: 40px;
            }
            
            .nav-arrow {
                right: 40px;
            }
            
            .slide-2 .nav-arrow {
                left: 40px;
            }
            
            .title-icon {
                right: 20%;
                top: 35%;
            }
        }

        @media(max-width:480px){
          .main-title {
              font-size: 1.5rem;
          }
        }

.nav-arrow.prefooter-icon-clip {
  --icon-size: 35rem;       
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111; 
  user-select: none;
  outline: none;
  overflow: hidden; /* important for slide effect */
}

.prefooter-icon {
  position: relative;
  /* width: 100%;
  height: 100%; */
    width: 510px;
    height: 508px;
    flex-shrink: 0;
    aspect-ratio: 255 / 254;
}

.prefooter-icon svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke-width: 16px;
  stroke-miterlimit: 10;
  fill: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
/* 📱 Mobile View (<=480px) */
@media (max-width: 480px) {
    .prefooter-icon svg {
        top: 5.5rem;
        left: 15rem;
        width: 100%;
        height: auto;
        stroke-width: 12px;
    }
    .prefooter-icon{
    width: 80.313px;
    height: 80px;
    flex-shrink: 0;
    aspect-ratio: 80.31 / 80.00;
    }
    .slide-container{
        height:auto;
    }
        .slide-container.slide-right {
    transform: translateX(0vw);
}
}

/* default black arrow */
.prefooter-icon .icon-default { 
  opacity: 1; 
  transform: translate(0,0); 
}

/* pink hover arrow starts outside top-left for down-right slide */
.prefooter-icon .icon-hover { 
  opacity: 0; 
  transform: translate(-100%, -100%); 
   color: #f2cdcf;
}

/* hover/focus effect */
.prefooter-icon-clip:hover .icon-default,
.prefooter-icon-clip:focus-visible .icon-default { 
  opacity: 0; 
  transform: translate(100%, 100%); /* slide out down-right */ 
}

.prefooter-icon-clip:hover .icon-hover,
.prefooter-icon-clip:focus-visible .icon-hover { 
  opacity: 1; 
  transform: translate(0,0); /* slide in to center */ 
}

/* click feedback */
.prefooter-icon-clip:active .prefooter-icon svg {
  transform: scale(.95);
}




/* optional: make it extra large on bigger screens */
@media (min-width: 992px){
  /* .nav-arrow.prefooter-icon-clip{ --icon-size: 112px; } */
}


 .nav-arrow,
.prefooter-icon-clip,
.prefooter-icon svg {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}   


.slide-2 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px;
      position: relative;
      min-height: 60vh;
      gap: 40px;
    }

    /* Left Arrow */
    .nav-arrow.prefooter-icon-clip-left {
      --icon-size: 35rem;
      width: var(--icon-size);
      height: var(--icon-size);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .prefooter-icons {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .prefooter-icons svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: translateX(100%);
      transition: none;
      pointer-events: none;
    }

    .nav-arrow.prefooter-icon-clip-left:hover .icon-hover,
    .nav-arrow.prefooter-icon-clip-left:focus-visible .icon-hover {
      animation: revealThenExit 1s ease-out forwards;
      color: #f2cdcf;
    }

    @keyframes revealThenExit {
      0%   { opacity:0; transform:translateX(100%); }
      30%  { opacity:1; transform:translateX(0); }
      100% { opacity:0; transform:translateX(-100%); }
    }

    /* Right Form */
    .form-section {
      flex: 1;
      text-align: left;
      margin-left: auto;
    }

    .form-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px;
      letter-spacing: 2px;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: flex-end;
    }

    .form-group {
      flex: 1;
      min-width: 180px;
    }

    .form-label {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .form-control {
      background: transparent;
      border: none;
      border-bottom: 1px solid #666;
      border-radius: 0;
      color: #fff;
      font-size: 0.95rem;
      padding: 5px 0;
    }

    .form-control::placeholder {
      color: #777;
    }

    .submit-btn {
      background: #fff;
      border: none;
      padding: 6px 20px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.85rem;
      color: #000;
      text-transform: uppercase;
      transition: 0.3s;
      align-self: center;
    }

    .submit-btn:hover {
      background: #f2cdcf;
      color: #000;
    }

    /* ✅ Responsive Fix */
    @media (max-width: 768px) {
      .slide-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
      }
      .form-section {
        margin-left: 0;
        width: 100%;
      }
      .form-row {
        flex-direction: column;
        align-items: stretch;
      }
      .submit-btn {
        margin: 20px auto 0;
        display: block;
      }
    }




/* aniamtion text */
 .headline-clip {
  overflow: hidden; /* hides the text until it reveals */
  display: inline-block;
}




.hero-heading-title{
  color: #330006;
  font-family:"MiedingerBold";
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 66px */
}

.artisanal-text{
  color: #000;
font-family: "MiedingerBold";
font-style: normal;
font-weight: 700;
line-height: normal;
}

.hero-heading-sec-para {
color: #000;
font-family: "SafiroMedium";
font-style: normal;
font-weight: 500;
line-height: 130%; /* 20.8px */
  }

    .democracy{
color: #330006;
font-family: "MiedingerBold";
font-style: normal;
font-weight: 700;
line-height: 100%; /* 20px */
  }
@media(max-width: 480) {
  .hero-heading-title{
  font-size:2.25rem;
  color: #330006;
  font-family:"MiedingerBold";
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 66px */
}
  

.artisanal-text{
color: #000;
text-align: center;
font-family: "MiedingerBold";
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
max-width: 388px;
  }

.hero-heading-sec-para {
color: #000;
text-align: center;
font-family: "SafiroMedium";
font-size: 1rem;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 20.8px */
max-width: 765.327px;
  }
  .snake{
width: 290.103px;
height: 133.005px;
flex-shrink: 0;
aspect-ratio: 277/127;
  }

  .democracy{
max-width: 358.43px;
color: #330006;
text-align: center;
font-family: "MiedingerBold";
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 20px */
  }


}

/* ============================
   tablet (≥480px)
   ============================ */
 
   @media (min-width: 481px) and (max-width: 768px) {
    .artisanal-text{
    font-size: 1.6875rem;
    min-width: 194.393px;
    width: 100%;
  }
  .arzaani-img{
    max-width: 185px;
  }
  }
/* ============================
   Laptop (≥769px)
   ============================ */
@media (min-width: 769px) {
  .hero-heading-title {
    font-size: 4.0625rem;
  }
  .artisanal-text{
    font-size: 1.6875rem;
    max-width: 194.393px;
    width: 100%;
  }
  .hero-heading-sec-para {
    font-size: 1rem;
    max-width: 765.327px;
  }
   .democracy{
     font-size: 4.0625rem;
     max-width: 1307px
   }
   .snake{
    max-width: 643.139px;
    height:auto;
    flex-shrink: 0;
    aspect-ratio: 227/104;
   }
   .arzaani-img{
    max-width: 285px;
   }
}


.category-item {
margin-bottom: 1rem;
color: #FFF;
text-align: left;
/* h2 */
font-family: "MiedingerBold";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
align-self: stretch;
}

/* Mobile View → center text */

@media (min-width: 768px) {
  .category-item {
    font-size: clamp(28px, 4vw, 60px);
    text-align: right;
  }

}


.store-caption {
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "SafiroMedium", sans-serif;
}

@media (min-width: 769px) {
  .store-caption {
    font-size: 24px; /* bigger for mobile */
    font-weight: 500;
  }

   .category-item {
    font-size: clamp(28px, 4vw, 60px);
    text-align: right;
  }
}
.collection-section{
  font-family: "SafiroMedium", sans-serif;
}
.icon-default {
  color: #ddd9d9; /* any color you want */
}


  @media (min-width: 481px) and (max-width: 768px) {
    .nav-arrow{
        right: -70px;
        bottom: -20px;
  }
  .prefooter-icon {
    position: relative;
    width: 510px;
    height: 385px;
    flex-shrink: 0;
    aspect-ratio: 255 / 254;
}
  }

.colection-prive{
color: #FFFEFB;
font-family: "SafiroMedium";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
align-self: stretch;
}

.butterfly-cls{
 max-width: 367.117px;
  height:auto;
}

.satish-gujral-title{
color: #FFF;
text-align: center;
font-family: "MiedingerBold";
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.satish-gujral-subtitle{
color: #FFF;
text-align: center;
font-family: "SafiroMedium";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.artist-quote{
color: #9A0000;
text-align: center;
font-family:'AmsterdamFour', cursive;
font-size: 28px;
font-style: normal;
font-weight: 400;
line-height: 197.539%; /* 55.311px */
}
.bio-text p{
color: #FFF;
text-align: justify;
font-family: "SafiroMedium";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.bio-btn{
display: inline-flex;
padding: 8px 23px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
border-radius: 50px;
background: #000;
color: #fff;
font-family: "MiedingerBold";
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.canvas-title, .drawing-title{
color: #FFFEFB;
font-family: "MiedingerBold";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.canvas-caption{
color: #FFF;
font-family: "SafiroMedium";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
/* Apply only on larger screens */
@media (min-width: 992px) {
  .canvas-img-lg {
   width: 1093px;
  height: 800px;
 flex-shrink: 0;
 aspect-ratio: 77/87;
  }
}


@media (min-width: 769px) {
  .colection-prive{
    font-size: 36px;
    align-self: stretch;
  }
  .butterfly-cls{
   max-width: 367.117px;
   height:auto;
   flex-shrink: 0;
   aspect-ratio: 33/32;
  }
  .satish-gujral-title{
    font-size: 50px;
  }
  .satish-gujral-subtitle{
    font-size: 24px;
  }
  .artist-quote{
    font-size: 78.067px;
  }
  .bio-btn{
    font-size: 20px;
    padding: 15px 60px;
  }
  .canvas-title, .drawing-title{
 font-size: 55px;
  }
  .canvas-caption{
 font-size: 24px;
  }
}